updating oE peek2s

peek2s

<built-in> function peek2s(object addr_n_length) 

Fetches a signed word, or some signed words , from an address in memory.

Parameters:
  1. addr_n_length : an object, either of
    • an atom addr -- to fetch one word at addr, or
    • a pair { addr, len}, to fetch len words at addr
Returns:

An object, either an integer if the input was a single address, or a sequence of integers if a sequence was passed. In both cases, integers returned are double words, in the range -32768..32767.

Errors:

Peeking in memory you don't own may be blocked by the OS, and cause a machine exception. If you use the define safe these routines will catch these problems with a EUPHORIA error.

When supplying a {address, count} sequence, the count must not be negative.

Comments:

Since addresses are 32-bit numbers on 32-bit architectures, they can be larger than the largest value of type integer (31-bits). Variables that hold an address should therefore be declared as atoms.

It is faster to read several words at once using the second form of peek than it is to read one word at a time in a loop. The returned sequence has the length you asked for on input.

Remember that peek2s takes just one argument, which in the second form is actually a 2-element sequence.

The only difference between peek2s and peek2u is how words with the highest bit set are returned. peek2s assumes them to be negative, while peek2u just assumes them to be large and positive.

Example 1:
-- The following are equivalent: 
-- first way 
s = {peek2s(100), peek2s(102), peek2s(104), peek2s(106)} 
 
-- second way 
s = peek2s({100, 4}) 
See Also:

Using Data Words, poke2, peeks, peek4s, allocate, free peek2u

Not Categorized, Please Help

Search



Quick Links

User menu

Not signed in.

Misc Menu